string str = "10s"; int x = Convert.ToInt32(str); Console.WriteLine(x);
string str = "100"; int x = Int32.Parse(str); // or int.Parse(); Console.WriteLine(x);